home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 52
/
Volume 52 - JOGO DISK .iso
/
Games
/
shopdrop.swf
/
scripts
/
__Packages
/
smashing
/
ClipHandler.as
< prev
next >
Wrap
Text File
|
2007-09-27
|
569b
|
29 lines
class smashing.ClipHandler
{
function ClipHandler(objHome, nOffset)
{
if(nOffset == undefined)
{
nOffset = 0;
}
this.offset = nOffset;
this.home = objHome;
this.clips = [];
this.openSlots = [];
this.id = smashing.ClipHandler.nId++;
}
function findFirstEmpty()
{
var _loc2_ = 0;
if(this.openSlots.length == 0)
{
_loc2_ = this.clips.length;
}
else
{
_loc2_ = this.openSlots.pop();
}
return _loc2_;
}
}